curl --request POST \
--url https://api-lr.agent.ai/v1/action/file_converter_merge_action \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"input_file_urls": "<string>",
"output_variable_name": "merged_file"
}
'{
"status": 123,
"response": {}
}Combine multiple files into a single PDF. Non-PDF files are automatically converted to PDF before merging.
curl --request POST \
--url https://api-lr.agent.ai/v1/action/file_converter_merge_action \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"input_file_urls": "<string>",
"output_variable_name": "merged_file"
}
'{
"status": 123,
"response": {}
}Bearer token from your account (https://agent.ai/user/integrations#api)